home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-08-16 | 630 b | 18 lines | [TEXT/MPS ] |
- #----------------------------------------------------------------------------------------------------------------------------------------------------
- # CleanWindows
- # MPW Shell Script
- # Written by Godfrey DiGiorgi, 12/14/88
- # Copyright: © 1991 by Apple Computer, Inc., all rights reserved.
- #
- # Usage:
- # CleanWindows
- # Function:
- # Set all windows to default size.
- #----------------------------------------------------------------------------------------------------------------------------------------------------
-
- # Loop through list of open windows.
- For F in `Windows`
- Movewindow 2 2 "{F}"
- Sizewindow 512 386 "{F}"
- End
-